home *** CD-ROM | disk | FTP | other *** search
- /*
- ### procedure for selecting the y-projection coordinate of combined space ###
- */
-
- #include <suntool/sunview.h>
- #include <suntool/panel.h>
-
- void aux_y_proc(item,value,event)
- Panel_item item;
- int value;
- Event *event;
- {
- int i,aux_i;
- extern int aux_max,*aux_on;
- extern int **aux_cur_index;
- extern Panel_item *aux_y_item;
-
- for(i=0;i<aux_max;i++){
- if(item == aux_y_item[i]){
- aux_i = i;
- break;
- }
- }
- aux_cur_index[aux_i][1] = value;
- aux_refresh(aux_i);
- }
-
-